for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
import Command from './command';
export default class Help extends Command {
match(name) {
return ['list', 'help'].includes(name);
}
call(cmd) {
cmd
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.
this.api.echo(this.api.options.helpInfo);
this.api.serverInfo();
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.